home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / ubmark / mspawn.c < prev    next >
C/C++ Source or Header  |  1996-07-10  |  177b  |  18 lines

  1.  
  2. /*****
  3. *    mspawn.c
  4. *    compile to mspawn
  5. *    place in /bin
  6. *****/
  7.  
  8. #include <stdio.h>
  9.  
  10. main()    {
  11.  
  12.     if (fork() == 0)
  13.         execv("workmal.exe", NULL);
  14.     ;
  15.     ;
  16.     return(0);
  17. }
  18.